home *** CD-ROM | disk | FTP | other *** search
/ Greenhouse Effect Detection Expriment / NASA Greenhouse Effect Detection Expriment 1992 - Disc 2.iso / software / dos / cdf22pc / makefile.bc < prev    next >
Encoding:
Makefile  |  1992-03-04  |  526 b   |  29 lines

  1. #----------------------------------------------------------------------------
  2. #
  3. #  NSSDC/CDF         Borland C/C++ makefile for the CDF distribution.
  4. #
  5. #  Version 1.0, 24-Feb-92, Hughes STX
  6. #
  7. #  Modification history:
  8. #
  9. #   V1.0  24-Feb-92, J Love    Original version.
  10. #
  11. #----------------------------------------------------------------------------
  12.  
  13. all:
  14.     cd src
  15.     make -fmakefile.bc -DCCLOC=$(CCLOC) all
  16.     cd ..
  17.  
  18. test:
  19.     cd samples
  20.     ..\src\test\qst2c
  21.     ..\src\test\qst2ic
  22.     cd ..
  23.  
  24. clean:
  25.     del *.bak
  26.     cd src
  27.     make -fmakefile.bc clean
  28.     cd ..
  29.